home *** CD-ROM | disk | FTP | other *** search
/ HamCall (October 1991) / HamCall (Whitehall Publishing)(1991).bin / prgming / ctutor / chrstrg.c < prev    next >
Text File  |  1990-10-14  |  504b  |  26 lines

  1.                                          /* Chapter 7 - Program 1 */
  2. main()
  3. {
  4. char name[5];       /* define a string of characters */
  5.  
  6.    name[0] = 'D';
  7.    name[1] = 'a';
  8.    name[2] = 'v';
  9.    name[3] = 'e';
  10.    name[4] = 0;     /* Null character - end of text */
  11.  
  12.    printf("The name is %s\n",name);
  13.    printf("One letter is %c\n",name[2]);
  14.    printf("Part of the name is %s\n",&name[1]);
  15. }
  16.  
  17.  
  18.  
  19. /* Result of execution
  20.  
  21. The name is Dave
  22. One letter is v
  23. Part of the name is ave
  24.  
  25. */
  26.